home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941221-19950208 / 000167_news@columbia.edu_Fri Jan 13 03:39:20 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14760
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 13 Jan 1995 17:41:40 -0500
  3. Received: by apakabar.cc.columbia.edu id AA03572
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 13 Jan 1995 17:41:38 -0500
  5. Newsgroups: comp.protocols.kermit.misc
  6. Path: news.columbia.edu!spcuna!ritz!kudut
  7. From: kudut@ritz.mordor.com (Kenneth Udut)
  8. Subject: Re: RESET MODEM HELP !!!
  9. X-Signature: YES! - the Yarn Editor Shell, Version 0.08.B1205
  10. References: <3f3n2f$olt@newsgate.dircon.co.uk>
  11. Sender: kudut@ritz.mordor.com (Ken Udut)
  12. Organization: SOUP Leaf off of ritz.mordor.com (Jersey City, NJ, USA)
  13. Date: Fri, 13 Jan 1995 03:39:20 GMT
  14. X-Newsreader: Yarn 0.75
  15. Message-Id: <eNV5lqo7I3lU075yn@ritz.mordor.com>
  16. Lines: 52
  17. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18.  
  19. kudut@ritz.mordor.com <Ken>
  20. -----------------------------------------------------------------------
  21.                                                             12.Jan.1995
  22.                      [response e-mailed and posted]
  23.  
  24. In article <3f3n2f$olt@newsgate.dircon.co.uk>,
  25. edge@dircon.co.uk (Spencer Clay) wrote:
  26. > Please can anyone help us to reset a modem,
  27. > By using a batch file for DOS,(possibly Kermit).
  28. > We know the AT commands to manually do this using Kermit,
  29. > they are:
  30. > AT&F8
  31. > AT&f0
  32. > AT&w0
  33. > ATZ
  34. > But we want to be able to send these commands directly
  35. > to our modem with a one liner.i.e from the Dos Command Line.
  36. > Please help us we are stupid!!!!!!!!
  37.  
  38. It depends what communications port your modem uses.  Try the
  39. following - one of which will probably work.
  40.  
  41. C:\> ECHO AT&F8 > COM1:
  42. C:\> ECHO AT&f0 > COM1:
  43. C:\> ECHO AT&w0 > COM1:
  44. C:\> ECHO ATZ > COM1:
  45.  
  46. or
  47.  
  48. C:\> ECHO AT&F8 > COM2:
  49. C:\> ECHO AT&f0 > COM2:
  50. C:\> ECHO AT&w0 > COM2:
  51. C:\> ECHO ATZ > COM2:
  52.  
  53.  
  54. Most modems are set up at COM1: or COM2:.